Hi,
The buffer cache hit ratio indicates the percentage of pages found in the SQL Server buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page
accesses. After a long period of time, the ratio moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount
of memory available to SQL Server or by using the buffer pool extension feature.
Small drops in the buffer cache hit ratio over several hours or even a day does not indicate that there is a specific problem. Likely the user was requesting data that had been removed from memory due to recent lack of usage.
The buffer cache hit ratio should be as high as possible as it is undesirable to have the SQL Server reading from disk unless it is necessary.
Please refer to the link article for more details:
http://logicalread.solarwinds.com/sql-server-buffer-hit-cache-ratio/#.VMH2AXkfoiQ
Regards,
Yan Li